projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fc798e
)
* editfns.c (Fmessage): Don't forget to return a value when
author
Jim Blandy
<jimb@redhat.com>
Mon, 22 Feb 1993 14:38:43 +0000
(14:38 +0000)
committer
Jim Blandy
<jimb@redhat.com>
Mon, 22 Feb 1993 14:38:43 +0000
(14:38 +0000)
args[0] == Qnil.
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/editfns.c
b/src/editfns.c
index 8c09c5554b24a1f937d229355409e2e0a934e668..e121796e1b42a915b7499768c6132dbf5ee8b643 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-1187,7
+1187,10
@@
minibuffer contents show.")
Lisp_Object *args;
{
if (NILP (args[0]))
- message (0);
+ {
+ message (0);
+ return Qnil;
+ }
else
{
register Lisp_Object val;